home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / sjpegc.c < prev    next >
C/C++ Source or Header  |  1994-10-06  |  8KB  |  265 lines

  1. /* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* sjpegc.c */
  20. /* Interface routines for IJG code, common to encode/decode. */
  21. #include "stdio_.h"
  22. #include "string_.h"
  23. #include "jpeglib.h"
  24. #include "jerror.h"
  25. #include "gx.h"
  26. #include "gserrors.h"
  27. #include "strimpl.h"
  28. #include "sdct.h"
  29. #include "sjpeg.h"
  30.  
  31. /* gs_jpeg_message_table() is kept in a separate file for arcane reasons.
  32.  * See sjpegerr.c.
  33.  */
  34. const char * const * gs_jpeg_message_table (P1(void));
  35.  
  36. /*
  37.  * Error handling routines (these replace corresponding IJG routines from
  38.  * jpeg/jerror.c).  These are used for both compression and decompression.
  39.  * We assume
  40.  * offset_of(jpeg_compress_data, cinfo)==offset_of(jpeg_decompress_data, dinfo)
  41.  */
  42.  
  43. private void
  44. gs_jpeg_error_exit (j_common_ptr cinfo)
  45. {    jpeg_stream_data *jcomdp =
  46.       (jpeg_stream_data *)((char *)cinfo -
  47.                    offset_of(jpeg_compress_data, cinfo));
  48.     longjmp(jcomdp->exit_jmpbuf, 1);
  49. }
  50.  
  51. private void
  52. gs_jpeg_emit_message (j_common_ptr cinfo, int msg_level)
  53. {    if ( msg_level < 0 )
  54.     {    /* GS policy is to ignore IJG warnings when Picky=0,
  55.          * treat them as errors when Picky=1.
  56.          */
  57.         jpeg_stream_data *jcomdp =
  58.           (jpeg_stream_data *)((char *)cinfo -
  59.                        offset_of(jpeg_compress_data, cinfo));
  60.         if ( jcomdp->Picky )
  61.             gs_jpeg_error_exit(cinfo);
  62.     }
  63.     /* Trace messages are always ignored. */
  64. }
  65.  
  66. /*
  67.  * This is an exact copy of format_message from jpeg/jerror.c.
  68.  * We do not use jerror.c in Ghostscript, so we have to duplicate this routine.
  69.  */
  70.  
  71. private void
  72. gs_jpeg_format_message (j_common_ptr cinfo, char * buffer)
  73. {
  74.   struct jpeg_error_mgr * err = cinfo->err;
  75.   int msg_code = err->msg_code;
  76.   const char * msgtext = NULL;
  77.   const char * msgptr;
  78.   char ch;
  79.   boolean isstring;
  80.  
  81.   /* Look up message string in proper table */
  82.   if (msg_code > 0 && msg_code <= err->last_jpeg_message) {
  83.     msgtext = err->jpeg_message_table[msg_code];
  84.   } else if (err->addon_message_table != NULL &&
  85.          msg_code >= err->first_addon_message &&
  86.          msg_code <= err->last_addon_message) {
  87.     msgtext = err->addon_message_table[msg_code - err->first_addon_message];
  88.   }
  89.  
  90.   /* Defend against bogus message number */
  91.   if (msgtext == NULL) {
  92.     err->msg_parm.i[0] = msg_code;
  93.     msgtext = err->jpeg_message_table[0];
  94.   }
  95.  
  96.   /* Check for string parameter, as indicated by %s in the message text */
  97.   isstring = FALSE;
  98.   msgptr = msgtext;
  99.   while ((ch = *msgptr++) != '\0') {
  100.     if (ch == '%') {
  101.       if (*msgptr == 's') isstring = TRUE;
  102.       break;
  103.     }
  104.   }
  105.  
  106.   /* Format the message into the passed buffer */
  107.   if (isstring)
  108.     sprintf(buffer, msgtext, err->msg_parm.s);
  109.   else
  110.     sprintf(buffer, msgtext,
  111.         err->msg_parm.i[0], err->msg_parm.i[1],
  112.         err->msg_parm.i[2], err->msg_parm.i[3],
  113.         err->msg_parm.i[4], err->msg_parm.i[5],
  114.         err->msg_parm.i[6], err->msg_parm.i[7]);
  115. }
  116.  
  117. /* And this is an exact copy of another routine from jpeg/jerror.c. */
  118.  
  119. private void
  120. gs_jpeg_reset_error_mgr (j_common_ptr cinfo)
  121. {
  122.   cinfo->err->num_warnings = 0;
  123.   /* trace_level is not reset since it is an application-supplied parameter */
  124.   cinfo->err->msg_code = 0;    /* may be useful as a flag for "no error" */
  125. }
  126.  
  127. /*
  128.  * This routine initializes the error manager fields in the JPEG object.
  129.  * It is based on jpeg_std_error from jpeg/jerror.c.
  130.  */
  131.  
  132. void
  133. gs_jpeg_error_setup (stream_DCT_state *st)
  134. {
  135.   struct jpeg_error_mgr * err = &st->data.common->err;
  136.  
  137.   err->error_exit = gs_jpeg_error_exit;
  138.   err->emit_message = gs_jpeg_emit_message;
  139.   /* We need not set the output_message field since gs_jpeg_emit_message
  140.    * doesn't call it, and the IJG library never calls output_message directly.
  141.    * Setting the format_message field isn't strictly necessary either,
  142.    * since gs_jpeg_log_error calls gs_jpeg_format_message directly.
  143.    */
  144.   err->format_message = gs_jpeg_format_message;
  145.   err->reset_error_mgr = gs_jpeg_reset_error_mgr;
  146.  
  147.   err->trace_level = 0;        /* default = no tracing */
  148.   err->num_warnings = 0;    /* no warnings emitted yet */
  149.   err->msg_code = 0;        /* may be useful as a flag for "no error" */
  150.  
  151.   /* Initialize message table pointers */
  152.   err->jpeg_message_table = gs_jpeg_message_table();
  153.   err->last_jpeg_message = (int) JMSG_LASTMSGCODE - 1;
  154.  
  155.   err->addon_message_table = NULL;
  156.   err->first_addon_message = 0;    /* for safety */
  157.   err->last_addon_message = 0;
  158.  
  159.   st->data.compress->cinfo.err = err; /* works for decompress case too */
  160. }
  161.  
  162. /* Stuff the IJG error message into errorinfo after an error exit. */
  163.  
  164. int
  165. gs_jpeg_log_error (stream_DCT_state *st)
  166. {    j_common_ptr cinfo = (j_common_ptr) &st->data.compress->cinfo;
  167.     char buffer[JMSG_LENGTH_MAX];
  168.     /* Format the error message */
  169.     gs_jpeg_format_message(cinfo, buffer);
  170.     (*st->report_error)((stream_state *)st, buffer);
  171.     return gs_error_ioerror;    /* caller will do return_error() */
  172. }
  173.  
  174.  
  175. /*
  176.  * Interface routines.  This layer of routines exists solely to limit
  177.  * side-effects from using setjmp.
  178.  */
  179.  
  180.  
  181. JQUANT_TBL *
  182. gs_jpeg_alloc_quant_table (stream_DCT_state *st)
  183. {    if (setjmp(st->data.common->exit_jmpbuf))
  184.     {    gs_jpeg_log_error(st);
  185.         return NULL;
  186.     }
  187.     return jpeg_alloc_quant_table((j_common_ptr)
  188.                       &st->data.compress->cinfo);
  189. }
  190.  
  191. JHUFF_TBL *
  192. gs_jpeg_alloc_huff_table (stream_DCT_state *st)
  193. {    if (setjmp(st->data.common->exit_jmpbuf))
  194.     {    gs_jpeg_log_error(st);
  195.         return NULL;
  196.     }
  197.     return jpeg_alloc_huff_table((j_common_ptr)
  198.                      &st->data.compress->cinfo);
  199. }
  200.  
  201. int
  202. gs_jpeg_destroy (stream_DCT_state *st)
  203. {    if (setjmp(st->data.common->exit_jmpbuf))
  204.         return_error(gs_jpeg_log_error(st));
  205.     jpeg_destroy((j_common_ptr) &st->data.compress->cinfo);
  206.     return 0;
  207. }
  208.  
  209.  
  210. /*
  211.  * These routines replace the low-level memory manager of the IJG library.
  212.  * They pass malloc/free calls to the Ghostscript memory manager.
  213.  * Note we do not need these to be declared in any GS header file.
  214.  */
  215.  
  216. void *
  217. jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
  218. {
  219.   return gs_malloc(1, sizeofobject, "JPEG small internal data allocation");
  220. }
  221.  
  222. void
  223. jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
  224. {
  225.   gs_free(object, 1, sizeofobject, "Freeing JPEG small internal data");
  226. }
  227.  
  228. void FAR *
  229. jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
  230. {
  231.   return gs_malloc(1, sizeofobject, "JPEG large internal data allocation");
  232. }
  233.  
  234. void
  235. jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
  236. {
  237.   gs_free(object, 1, sizeofobject, "Freeing JPEG large internal data");
  238. }
  239.  
  240. long
  241. jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
  242.             long max_bytes_needed, long already_allocated)
  243. {
  244.   return max_bytes_needed;
  245. }
  246.  
  247. void
  248. jpeg_open_backing_store (j_common_ptr cinfo, void * info,
  249.              long total_bytes_needed)
  250. {
  251.   ERREXIT(cinfo, JERR_NO_BACKING_STORE);
  252. }
  253.  
  254. long
  255. jpeg_mem_init (j_common_ptr cinfo)
  256. {
  257.   return 0;            /* just set max_memory_to_use to 0 */
  258. }
  259.  
  260. void
  261. jpeg_mem_term (j_common_ptr cinfo)
  262. {
  263.   /* no work */
  264. }
  265.